summaryrefslogtreecommitdiff
path: root/app/[lng]/auth/tech-signup/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/auth/tech-signup/page.tsx')
-rw-r--r--app/[lng]/auth/tech-signup/page.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/auth/tech-signup/page.tsx b/app/[lng]/auth/tech-signup/page.tsx
new file mode 100644
index 00000000..d5b019ed
--- /dev/null
+++ b/app/[lng]/auth/tech-signup/page.tsx
@@ -0,0 +1,17 @@
+import { Suspense } from "react"
+import { Metadata } from "next"
+import { TechVendorJoinForm } from "@/components/signup/tech-vendor-join-form"
+import { JoinFormSkeleton } from "@/components/signup/join-form-skeleton"
+
+export const metadata: Metadata = {
+ title: "기술영업 협력업체 등록",
+ description: "기술영업 협력업체 등록 페이지입니다.",
+}
+
+export default function TechVendorSignUpPage() {
+ return (
+ <Suspense fallback={<JoinFormSkeleton/>}>
+ <TechVendorJoinForm />
+ </Suspense>
+ )
+} \ No newline at end of file